testing.common.barrier (field)

10 uses

	testing (current package)
		fuzz.go#L304: 				barrier: make(chan bool),
		fuzz.go#L505: 				barrier: make(chan bool),
		fuzz.go#L576: 			barrier: nil, // T.Parallel has no effect when fuzzing.
		fuzz.go#L675: 			close(f.barrier)
		testing.go#L517: 	barrier  chan bool // To signal parallel subtests they may start. Nil when T.Parallel is not present (B) or not usable (when fuzzing).
		testing.go#L1237: 	if t.parent.barrier == nil {
		testing.go#L1264: 	<-t.parent.barrier // Wait for the parent test to complete.
		testing.go#L1402: 			close(t.barrier)
		testing.go#L1466: 			barrier: make(chan bool),
		testing.go#L1829: 					barrier: make(chan bool),